GTK+ requires the following packages:
+ - Autotools or Meson
+
- The GLib, Pango, GdkPixbuf, ATK and cairo libraries, available at
the same location as GTK+. GTK+ @GTK_VERSION@ requires at least
GLib @GLIB_REQUIRED_VERSION@, Pango @PANGO_REQUIRED_VERSION@,
- gobject-introspection @INTROSPECTION_REQUIRED_VERSION@ or newer.
-Simple install procedure
-========================
+Simple install procedure for Meson
+==================================
+
+ % tar xf gtk+-@GTK_VERSION@.tar.xz # unpack the sources
+ % cd gtk+-@GTK_VERSION@ # change to the toplevel directory
+ % meson setup _build # configure GTK+
+ % meson compile -C _build # build GTK+
+ [ Become root if necessary ]
+ % meson install -C _build # install GTK+
+
+Simple install procedure for Autotools
+======================================
% tar xf gtk+-@GTK_VERSION@.tar.xz # unpack the sources
% cd gtk+-@GTK_VERSION@ # change to the toplevel directory
- % ./configure # run the `configure' script
- % make # build GTK+
+ % ./autogen.sh # configure GTK+
+ % make # build GTK+
[ Become root if necessary ]
- % make install # install GTK+
+ % make install # install GTK+
The Details
===========
Or online at:
- http://library.gnome.org/devel/gtk/stable/gtk-building.html
+ http://developer-old.gnome.org/gtk/3.24/gtk-building.html